home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Game / misc / WormWars.lha / WormWars / Source / amiga.h next >
C/C++ Source or Header  |  2004-08-22  |  1KB  |  44 lines

  1. #define DEPTH4           4
  2. #define DEPTH5           5
  3.  
  4. /* menus */
  5. #define MN_PROJECT       0
  6. #define MN_EDIT            1
  7. #define MN_SETTINGS        2
  8. #define MN_HELP            3
  9. #define IN_NEW             0
  10. #define IN_OPEN            1
  11. #define IN_REVERT          2
  12. #define IN_SAVE            4
  13. #define IN_SAVEAS          5
  14. #define IN_PROJECTDELETE   7
  15. #define IN_QUIT            9
  16. #define IN_CUT             0
  17. #define IN_COPY            1
  18. #define IN_PASTE           2
  19. #define IN_ERASE           4
  20. #define IN_EDITDELETE      5
  21. #define IN_INSERT          6
  22. #define IN_APPEND          7
  23. #define IN_ANIMATIONS      0
  24. #define IN_CREATEICONS     1
  25. #define IN_ENGRAVEDSQUARES 2
  26. #define IN_SHOWTITLEBAR    3
  27. #define IN_CREATURES       0
  28. #define IN_OBJECTS         1
  29. #define IN_ABOUT           3
  30.  
  31. // gfx.c
  32. EXPORT void drawabout(void);
  33. EXPORT void drawbackground(void);
  34. EXPORT void drawboing(void);
  35. EXPORT void drawlogo(void);
  36.  
  37. // le.c
  38. AGLOBAL void dot(void);
  39.  
  40. #ifdef __STORM__
  41.     #define EXIT_SUCCESS  0
  42.     #define EXIT_FAILURE 20
  43. #endif
  44.